Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/208 - Sorting visualizer/

index.html /cody/swapnilsparsh/30DaysOfJavaScript/208 - Sorting visualizer/index.html
365 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /
script.js /cody/swapnilsparsh/30DaysOfJavaScript/208 - Sorting visualizer/script.js
216 Views
0 Comments
const n = 9; //number of bars to sort
const array = [];
init();

//generate random numbers
function init() {
for (let i = 0; i
style.css /cody/swapnilsparsh/30DaysOfJavaScript/208 - Sorting visualizer/style.css
148 Views
0 Comments
.bar {
padding: 10px 12px;
display: flex;
justify-content: center;
width: 25px;
background: rgb(224, 81, 172);
margi